using UnityEditor;
using UnityEngine;
using System;
using Object = UnityEngine.Object;

namespace MagicaCloth
{
    public class MagicaVirtualDeformerInspector : Editor
    {
        public override void OnInspectorGUI()
        {
            throw new NotImplementedException();
        }

        void DrawVirtualDeformerInspector()
        {
            throw new NotImplementedException();
        }
    }
}